home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 3.2
/
Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO
/
packet
/
n17jsrc
/
asy.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-27
|
1KB
|
42 lines
#ifndef _ASY_H
#define _ASY_H
#ifndef _GLOBAL_H
#include "global.h"
#endif
#ifndef _MBUF_H
#include "mbuf.h"
#endif
#ifndef _IFACE_H
#include "iface.h"
#endif
#define ASY_MAX 5 /* Five asynch ports allowed on the PC */
#define SLIP_MODE 0
#define AX25_MODE 1
#define NRS_MODE 2
#define UNKNOWN_MODE 3
#define PPP_MODE 4
/* In 8250.c: */
int asy_init __ARGS((int dev,struct iface *iface,char *arg1,char *arg2,
int16 bufsize,int trigchar,char cts,char rlsd,int16 speed));
int32 asy_ioctl __ARGS((struct iface *iface,int cmd,int set,int32 val));
int asy_send __ARGS((int dev,struct mbuf *bp));
int asy_speed __ARGS((int dev,int16 bps));
int asy_stop __ARGS((struct iface *iface));
int get_rlsd_asy __ARGS((int dev, int new_rlsd));
int get_asy __ARGS((int dev));
/* In asyvec.asm: */
INTERRUPT asy0vec __ARGS((void));
INTERRUPT asy1vec __ARGS((void));
INTERRUPT asy2vec __ARGS((void));
INTERRUPT asy3vec __ARGS((void));
INTERRUPT asy4vec __ARGS((void));
#endif /* _ASY_H */